home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / fscache / fscacheBlocks.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  59 lines

  1. /*
  2.  * fscacheBlocks.h --
  3.  *
  4.  *    Declarations for the file systems block cache.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  */
  16.  
  17. #ifndef _FSBLOCKCACHE
  18. #define _FSBLOCKCACHE
  19.  
  20. #include <fscache.h>
  21. #include <fsio.h>
  22. #include <fslcl.h>
  23. #include <fsrmt.h>
  24.  
  25. #include <stdio.h>
  26. #include <bstring.h>
  27.  
  28. /*
  29.  * Minimum number of cache blocks required.  The theoretical limit
  30.  * is about 3, enough for indirect blocks and data blocks, but
  31.  * that is a bit extreme.  The maximum number of cache blocks is
  32.  * a function of the physical memory size and is computed at boot time.
  33.  */
  34. #define FSCACHE_MIN_BLOCKS    32
  35.  
  36. /*
  37.  * Macros to get from the links of a cache block to the cache block itself.
  38.  */
  39.  
  40. #define DIRTY_LINKS_TO_BLOCK(ptr) ((Fscache_Block *) ((ptr)))
  41.  
  42. #define USE_LINKS_TO_BLOCK(ptr) \
  43.         ((Fscache_Block *) ((int) (ptr) - sizeof(List_Links)))
  44.  
  45. #define FILE_LINKS_TO_BLOCK(ptr) \
  46.         ((Fscache_Block *) ((int) (ptr) - 2 * sizeof(List_Links)))
  47.  
  48. /*
  49.  * routines.
  50.  */
  51. extern void FscacheBlocksUnneeded _ARGS_((Fscache_FileInfo *cacheInfoPtr,
  52.         int offset, int numBytes));
  53. extern Boolean FscacheAllBlocksInCache _ARGS_((Fscache_FileInfo *cacheInfoPtr));
  54. extern int FscacheBlockOkToScavenge _ARGS_((Fscache_FileInfo *cacheInfoPtr));
  55. extern int FscacheBlockOkToScavengeExceptDirty _ARGS_((Fscache_FileInfo
  56.     *cacheInfoPtr));
  57.  
  58. #endif _FSBLOCKCACHE
  59.